Builder

class Builder

A builder of EventParams.

Builders are created by invoking newBuilder. Each of the setter methods modifies the state of the builder and returns the same instance. Builders are not thread-safe and should not be used concurrently from multiple threads without external synchronization.

Functions

Link copied to clipboard
Sets the flag indicating whether the event bubbles up through the DOM.
Link copied to clipboard
open fun build(): EventParams
Returns a new EventParams instance built from the current state of this builder.
Link copied to clipboard
Sets the flag indicating whether the event can be canceled, and therefore prevented as if the event never happened.